home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / LANG / AOF / DECAOF / decaof / error_h < prev    next >
Text File  |  1992-11-20  |  351b  |  22 lines

  1. /*
  2.  * error/warning report function prototypes
  3.  *
  4.  * Andy Duplain, BT Customer Systems, Brighton, UK.  duplain@btcs.bt.co.uk
  5.  */
  6.  
  7. #ifndef __ERROR_H
  8. #define __ERROR_H
  9.  
  10. #include "cproto.h"
  11.  
  12. #ifdef ANSI_C
  13. #include "stdarg.h"
  14. #else
  15. #include "varargs.h"
  16. #endif
  17.  
  18. void error P__((char *fmt, ...));
  19. void warning P__((char *fmt, ...));
  20.  
  21. #endif /* __ERROR_H */
  22.